home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1997 August / Walnut Creek CDROM.7z / VOL_400 / 460_01 / YACL0160.ZIP / uidemo / combobox / appwin.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-17  |  547 b   |  30 lines

  1.  
  2.  
  3. #ifndef _appwin_h_ /* Fri Sep 16 11:06:53 1994 */
  4. #define _appwin_h_
  5.  
  6.  
  7. #include "ui/dialog.h"
  8. #include "ui/label.h"
  9. #include "ui/pushbtn.h"
  10. #include "ui/combobox.h"
  11.  
  12. // ------------------------ Class AppWindow ---------------------------
  13.  
  14. class AppWindow: public UI_Dialog {
  15.  
  16. public:
  17.     AppWindow ();
  18.     bool HandleChildEvent (const UI_Event& e);
  19.  
  20. protected:
  21.     UI_ComboBox*   _box0;
  22.     UI_ComboBox*   _box1;
  23.     UI_Label*      _lbl0;
  24.     UI_Label*      _lbl1;
  25.     UI_PushButton* _btn0;
  26.     UI_PushButton* _btn1;
  27. };
  28.  
  29. #endif /* _appwin_h_ */
  30.